home *** CD-ROM | disk | FTP | other *** search
/ Micromanía 93 / CDMM_93_2.ISO / Project Nomads / nomads_demo_eng.exe / DUMMYHOUSE.TCL < prev    next >
Encoding:
Text File  |  2002-04-19  |  3.0 KB  |  125 lines

  1. #
  2. #   Zustands-▄berwachungs-Script
  3. #   State Watch Script
  4. #
  5. #   Dummyhouse
  6. #
  7. #   created:    15-Jun-2000 Bernd
  8. #   
  9. #   (C) COPYRIGHT 2000 RADONLABS GMBH
  10. #
  11.  
  12.  
  13. # --------------------------------------------------------
  14. #         F U N K T I O N S L O S E S   H A U S
  15. # --------------------------------------------------------
  16. proc dummyhousewatch_normal {} {
  17.  
  18.     # vorerst hier unzerstoerbar. Bleibt so, bis es aufgesammelt
  19.     # (in BackPack) oder gebaut (kein Artefakt mehr) wird 
  20.     if {[.getartefactmode] == "false"} {
  21.         .announcestate house
  22.     } elseif {[.iscollected] == "true"} {
  23.         .announcestate backpack
  24.     } elseif {[.getcharges] <= 0} {
  25.         .setremoveable true
  26.     } elseif {[.getcreator] != "null"} {
  27.         .announcestate infactoryslot
  28.     }
  29. }
  30.  
  31. proc dummyhousewatch_infactoryslot {} {
  32.  
  33.     # vorerst hier unzerstoerbar. Bleibt so, bis es aufgesammelt
  34.     # (in BackPack) oder gebaut (kein Artefakt mehr) wird 
  35.     if {[.getartefactmode] == "false"} {
  36.         .announcestate house
  37.     } elseif {[.iscollected] == "true"} {
  38.         .announcestate backpack
  39.     } elseif {[.getcharges] <= 0} {
  40.         .setremoveable true
  41.     } elseif {[.getcreator] == "null"} {
  42.         .announcestate normal
  43.     }
  44. }
  45.  
  46. proc dummyhousewatch_house {} {
  47.  
  48.     # kann zerstoert oder wieder zusammengeklappt werden
  49.     if {[.iskilled] == "true"} {
  50.         .announcestate explode
  51.     } elseif {[.getartefactmode] == "true"} {
  52.         .announcestate normal
  53.     } elseif {[.removebuilding] == "true"} {
  54.         .announcestate remove
  55.     }
  56. }
  57.  
  58.  
  59. proc dummyhousewatch_bauphase {} {
  60.  
  61.     # kann zerstoert oder wieder zusammengeklappt werden
  62.     if {[.iskilled] == "true"} {
  63.         .announcestate explode
  64.     } elseif {[.getartefactmode] == "true"} {
  65.         .announcestate normal
  66.     } elseif {[.isstatetimeover] == "true"} {
  67.         .announcestate house
  68.     }
  69. }
  70.  
  71. proc dummyhousewatch_explode {} {
  72.  
  73.     # kein Uebergang zum Artefakt.
  74.     if {[.isanimfinished] == "true"} {
  75.         .setremoveable true
  76.     }
  77. }
  78.  
  79. proc dummyhousewatch_remove {} {
  80.  
  81.     # kein Uebergang zum Artefakt.
  82.     if {[.isanimfinished] == "true"} {
  83.         .setremoveable true
  84.     }
  85. }
  86.  
  87. proc dummyhousewatch_backpack {} {
  88.  
  89.     # Moeglich: usgeworfen (Nicht mehr "gesammelt") oder im
  90.     # Menue gezeigt (sichtbar)
  91.     if {[.iscollected] == "false"} {
  92.         .announcestate normal
  93.     } elseif {[.isvisible] == "true"} {
  94.         .announcestate menue
  95.     }
  96. }
  97.  
  98. proc dummyhousewatch_menu {} {
  99.  
  100.     if {[.isvisible] == "false"} {
  101.         .announcestate backpack
  102.     } elseif {[.getartefactuse] == "true"} {
  103.         .announcestate build
  104.     } elseif {[.iscollected] == "false"} {
  105.         .announcestate normal
  106.     }
  107. }
  108.  
  109. proc dummyhousewatch_build {} {
  110.  
  111.     if {[.iskilled] == "true"} {
  112.         .announcestate explode
  113.     } elseif {[.getartefactmode] == "false"} {
  114.         .announcestate bauphase
  115.     } elseif {[.getartefactuse] == "false"} {
  116.         .announcestate backpack
  117.     }
  118. }
  119.  
  120. proc dummyhousewatch_cinematic {} {
  121.  
  122.     # empty
  123. }    
  124.  
  125.